home *** CD-ROM | disk | FTP | other *** search
- !AddMode(s,s,s) // defines new game mode - AddMode(ModeID, Path, Name)
- !AddModeCustom(s,s,s) // defines new game mode - AddMode(ModeID, Path, Name)
- !StartCash(i) // defines starting cash for a game mode
- !EndCondition(s) // defines game end condition for a game mode
- !SetParam(s,s)
- !TestRace(s) // path to the script definig the test race (in garage)
- !BestTimeDir(s) // path where best times files will be put and scaned when showing best times
- !BestTimeInfo(s) // this short info text will be put into every best time record file
-
- AddMode("RallyLeague", "Data\\Logic\\RallyLeague\\", "&GameModeChampionship&")
- {
- StartCash(15000)
- //PZ EndCondition("rA8Extr_1_POS > 0 && rA8Extr_2_POS > 0 && rA8Extr_3_POS > 0 && rA8Extr_4_POS > 0 && rA8Extr_5_POS > 0 && rA8Extr_6_POS > 0")
- EndCondition("rOS_1_POS <= 2 && rOS_2_POS && rOS_1_POS != 0 && rOS_2_POS != 0 ")
-
- TestRace("data\\logic\\RallyLeague\\TestRace.scr")
- BestTimeDir("data\\RacesData\\RallyLeague\\")
- BestTimeInfo("CAREER")
- // BestTimeInfo("FAKEAI")
- }
-
- AddMode("Net", "Data\\Logic\\NetMode\\", "&GameModeNet&")
- {
- StartCash(15000)
- BestTimeDir("data\\RacesData\\Net\\")
- }
-
- AddMode("SingleRace", "Data\\Logic\\SingleRace\\", "&GameModeArcade&")
- {
- StartCash(15000)
- BestTimeDir("data\\RacesData\\SingleRace\\")
- BestTimeDir("data\\RacesData\\RallyLeague\\")
- }
-
- AddMode("TestMode", "Data\\Logic\\TestMode\\", "Test mode")
- {
- StartCash(1000000)
- BestTimeDir("data\\RacesData\\Test\\")
- }
-
- AddModeCustom("Custom", "Data\\Logic\\SingleRace\\", "&CustomGame&")
- {
- StartCash(1000000)
- BestTimeDir("data\\RacesData\\Custom\\")
- }
-
-